home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 44
/
Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso
/
-in_the_mag-
/
basics
/
amos
/
bestofsd.lha
/
Xor4.AMOS
/
Xor4.amosSourceCode
Wrap
AMOS Source Code
|
1992-10-20
|
903b
|
39 lines
' *****************************************************
' * *
' * This AMOS-program was made by Svante Danielsson *
' * *
' * Mail me at: til96sdn@mds.mdh.se *
' * *
' *****************************************************
Degree
Screen Open 1,320,256,2,Lowres : Flash Off : Curs Off
Circle 16,16,15 : Paint 16,16
Ink 0
Circle 11,12,2
Paint 11,12
Circle 21,12,2
Paint 21,12
Circle 16,23,4
Paint 16,23
Screen Open 0,320,256,2,Lowres : Flash Off : Curs Off : Hide
Double Buffer : Autoback 0
Palette ,$FF0
Do
For C=0 To 80 Step 8
X=144+Sin(C*8-B*7)*(C+B/2)/2
Y=110+Cos(C*8+B*7)*(C+B/2)/2
Screen Copy 1,0,0,32,32 To 0,X,Y,%1100000
Next
Inc B
Screen Swap
Wait Vbl
Cls
Loop